*{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*navbar start*/
li, a, button{
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
    font-weight: 500;
    font-size: 19px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 1%;
    background-color: rgba(0, 0, 0, 0.911);
    width: 100%;
    position: fixed;
    top:0%;
    z-index: 1;
    
}

.logo{
    cursor: pointer;
    width: 10%;
    padding: 0px 10px;
    order: 3;
    margin-right: 10px;
    margin-left: auto;
}

.nav{
    order: 1;
}

.nav_links1{
    list-style: none;
    background-color:none;
    padding: 0px;
}

.nav_links1 li{
    display: inline-block;
    padding: 8px;
    margin: 0px 0px;
    background-color: none;
    border-radius: 10px;
}

.nav_links1 li:nth-child(1){
    padding: 0px 0px 0px 0px;
    color:  blue;
    margin: 0px 0px 0px -11px;
}

.nav_links1 li a{
    transition: all 0.3s ease 0s;
    background-color: none;
    padding: 8px;
}

.nav_links1 li a:hover{
    color: rgb(169, 34, 0);
    background-color: white;
}

.cta{
    background-color: none;
    border-radius: 50px;
    padding: 0px 0px;
    margin: 0px 30px;
    order: 2;
    
}

.button{
    padding: 4px 15px;
    background-color: rgb(169, 34, 0);
    border: 1px solid rgb(169, 34, 0);
    border-radius: 10px;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-top: 0%;
    padding-top: 0%;
}

.button:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(169, 34, 0) ;
}
/*navbar end*/



/*side nav start */
#sideNav{
    width: 210px;
    height: 100vh;
    position: fixed;
    right: -210px;
    top: 0;
    background:white;
    z-index: 2;
    transition: 0.5s;
    box-shadow: 2px 5px 21px 2px rgba(70, 63, 63, 0.781);
    
}

nav ul li{
    list-style: none;
    margin: 0px;
    margin-top: 0px;
    transition: 0.5s;
    text-align: center;
    font-size: 50px;
    padding: 30px;
    display: flex;
    flex-wrap: nowrap; 
}



nav ul li:hover{
    background-color: rgb(218, 212, 212);
    padding: 30px 40px;
    font-size: 30px;
    transition: 0.5s;

}

#sideNav nav ul li:nth-child(1){
    margin-top: 15vh;
}

nav ul li a{
    text-decoration: none;
    color: brown;
    margin-right: 100px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 10px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
    'Open Sans', 'Helvetica Neue', sans-serif;
}

#manuBtn{
    width: 40px;
    height: 40px;
    background:brown ;
    text-align: center;
    position: fixed;
    right: 0.5%;
    top:6%;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
    box-shadow: 1px 2px 20px 1px rgba(70, 63, 63, 0.781);
}

#manuBtn img{
    width: 30px;
    margin-top: 8px;
}

body{
    background: #eb4c30;
    font-size: 14px;
}

.container{
    width: 80%;
    margin: 50px auto;
}

.contact-box{
    background: #fff;
    display: flex;
}

.contact-left{
    flex-basis: 60%;
    padding: 40px 60px;
}

.contact-left h3{
    color: brown;
    font-weight: 600px;
    margin-bottom: 30px;
}

.contact-right{
    flex-basis: 40%;
    padding: 40px;
    background: rgb(180, 32, 32);
    color: #fff;
}

h1{
    margin-bottom: 10px;
}

.container p{
    margin-bottom: 40px;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-row .input-group{
    flex-basis: 45%;
}

input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
}

textarea{
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}

label{
    margin-bottom: 6px;
    display: block;
    color: rgb(180, 32, 32);
}

button{
    background: rgb(180, 32, 32);
    width: 100px;
    border: none;
    outline: none;
    color: #fff;
    height: 35px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px 0px rgba(28, 0, 181, 0.3);
    cursor: pointer;
    transition: all 0.5s 0.0s;
}

button:hover{
    background: #fff;
    color:  rgb(180, 32, 32);
    transition: all 0.5s 0.0s;
}

tr td:first-child{
    padding-right: 20px;
}

tr td{
    padding-top: 20px;
    color: #fff;
}

h3{
    margin-bottom:30px ;
}


/*fotter start*/
footer{
    position: relative;
    width: auto;
    margin-top: 8rem;
    height: auto;
    padding: 50px 50px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container0{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

footer .container0 .sec{
    margin-right: 30px;

}

footer .container0 .sec.aboutus{
    width: 40%;
}

footer .container0  h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container0  h2:before{
    content: '';    
    position: absolute;
    bottom: -5px;
    left: 0;
    width:50px  ;
    height: 2px;
    background-color: brown;
}

footer p{
    color: #999;
}

.sci{
    margin-top: 20px;
    display: flex;
}

.sci li{
    list-style: none;
}

.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: all ease 0.3s;
}

.sci li a:hover{
    background: brown;
    transition: all ease 0.3s;
}

.sci li a .fab{
    color: #fff;
    font-size: 20px;
    transition: all ease 0.3s;
}

.quickLinks{
    position: relative;
    width: 25%;
}

.quickLinks ul li {
    list-style: none;
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease 0.25s;
}

.quickLinks ul li a{
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: all ease 0.25s;
}

.quickLinks ul li a:hover{
    color: #fff;
    transition: all ease 0.25s;
    padding-left: 8px;
}

.contact0{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.contact0 .info0{
    position: relative;
}

.contact0 .info0 li {
    display: flex;
    margin-bottom: 16px;
}

.contact0 .info0 li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact0 .info0 li span{
    color: #999;
}

.contact0 .info0 li a{
    color: #999;
    text-decoration: none;
}

.contact0 .info0 li a:hover{
    color: #fff;
    text-decoration: none;
}

.copyrightText{
    width: auto;
    background-color: #181818;
    padding: 8px 50px;
    text-align: center;
    color: #999;
}

/*responsive code start*/

@media (max-width: 991px ){
    footer{
        padding: 40px;
    }

    footer .container0{
        flex-direction: column;
    }

    footer .container0 .sec{
        margin: 0px auto;
        margin-bottom: 40px;
    }

    footer .container0 .sec.aboutus,.quickLinks,.contact0{
        width: 100%;
    }

    .copyrightText{
        padding: 8px 50px;
    }

}
/*responsive code end*/
/*fotter end*/

/*screen resize start*/

@media (max-width:425px){
    header{
        display: hidden;
    }
    .logo{
        display: none;
    }
    .nav{
        display: none;
    }
    .cta{
        display: none;
    }
}

@media (max-width:425px){
    .container .box .details{
        display: none;
    }
    
    .container .box:hover .details{
        display: none;
    }
    
    .container .box .details .content{
        display: none;
    }
    
    .container .box .details .content h2{
        display: none;
    }
    
    .container .box .details .content p{
        display: none;
        
    }
}

@media (max-width:425px){
    .container{
        width: 80%;
        margin: 50px auto;
    }
    
    .contact-box{
        background: #fff;
        display: block;
    }
    
    .contact-left{
        flex-basis: 60%;
        padding: 40px 20px;
    }
    
    .contact-left h3{
        color: brown;
        font-weight: 600px;
        margin-bottom: 30px;
    }
    
    .contact-right{
        flex-basis: 40%;
        padding: 10px;
        background: rgb(180, 32, 32);
        color: #fff;
    }
    
    h1{
        margin-bottom: 10px;
    }
    
    .container p{
        margin-bottom: 40px;
    }

    tr td:first-child{
        padding-right: 20px;
        max-width: 160px;
        
    }
    
    #mail{
        font-size: clamp(.85rem, 1.25vw, 2.55rem);
    }

    tr td{
        padding-top: 20px;
        color: #fff;
        max-width: 160px;
    }

    
    h3{
        margin-bottom:30px ;
    }
    
}

@media (min-width:2560px){
    footer{
        margin-top: 5vh;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #111;
        height: auto;
        max-width: 100%;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        padding-top: 40px;
        color: #fff;
    }

    .copyrightText{
        width: auto;
        background-color: #181818;
        padding: 8px 50px;
        text-align: center;
        color: #999;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
    }
}
/*screen resize end*/